home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Utilities / Calc / xstring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-10  |  532 b   |  24 lines  |  [TEXT/????]

  1. /*
  2.  * Copyright (c) 1992 David I. Bell
  3.  * Permission is granted to use, distribute, or modify this source,
  4.  * provided that this copyright notice remains intact.
  5.  */
  6.  
  7.  
  8. typedef struct {
  9.  
  10.     char *h_list;    /* list of strings separated by nulls */
  11.     long h_used;    /* characters used so far */
  12.     long h_avail;    /* characters available for use */
  13.     long h_count;    /* number of strings */
  14.     
  15. } STRINGHEAD;
  16.  
  17.  
  18. extern char *addstr(), *namestr(), *charstr(), *addliteral();
  19. extern long findstr(), stringindex();
  20.  
  21. extern void initstr();
  22.  
  23. /* END CODE */
  24.